home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Disc to the Future 2
/
Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin
/
MAC
/
MPW_TOOL
/
TOOLS
/
TOOLS_WI
/
ICON_8
/
ICONT_FO
/
LFILE.H
< prev
next >
Wrap
Text File
|
1990-03-02
|
248b
|
11 lines
/*
* A linked list of files named by link declarations is maintained using
* lfile structures.
*/
struct lfile {
char *lf_name; /* name of the file */
struct lfile *lf_link; /* pointer to next file */
};
extern struct lfile *lfiles;